home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / asm / pgtable-2level-defs.h < prev    next >
C/C++ Source or Header  |  2005-10-13  |  338b  |  19 lines

  1. #ifndef _I386_PGTABLE_2LEVEL_DEFS_H
  2. #define _I386_PGTABLE_2LEVEL_DEFS_H
  3.  
  4. /*
  5.  * traditional i386 two-level paging structure:
  6.  */
  7.  
  8. #define PGDIR_SHIFT    22
  9. #define PTRS_PER_PGD    1024
  10.  
  11. /*
  12.  * the i386 is two-level, so we don't really have any
  13.  * PMD directory physically.
  14.  */
  15.  
  16. #define PTRS_PER_PTE    1024
  17.  
  18. #endif /* _I386_PGTABLE_2LEVEL_DEFS_H */
  19.